home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.2 KB | 49 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _DISPMOD_
- #define _DISPMOD_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODDispatchModule;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODSession;
-
- //=====================================================================================
- // ODDispatchModule
- //=====================================================================================
-
- interface ODDispatchModule : ODObject
- {
- void InitDispatchModule(in ODSession session);
-
- ODBoolean Dispatch(inout ODEventData event, inout ODEventInfo eventInfo);
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODDispatchModule;
-
- releaseorder:
- InitDispatchModule,
- Dispatch;
-
- };
- #endif //# __SOMIDL__
- };
-
- #endif //# _DISPMOD_
-
-